.menu,
.footer {
    display: none !important;
}

/***** Website's background *****/
body {
    background: var(--gradient) !important;
}

/***** Custom Button *****/
.customButton {
    width: fit-content;
}
.customButton {
    border-radius: 50px;
}
.customButton {
    font-family: 'bold-font';
    font-size: 14px !important;
    text-transform: uppercase;
}
.customButton:hover {
    transform: scale(1.05);
    transition: .2s ease-in-out;
}

@media screen and (min-width: 1080px) {
    .customButton {
        padding: 10px 40px;
    }
    .customButton {
        font-weight: 600;
    }
}
@media screen and (max-width: 1080px) {
    .customButton {
        padding: 10px 40px;
    }
    .customButton {
        font-weight: 400;
    }
}

/***** Custom Button Light *****/
.customButton.light {
    background-color: #eee;
    border: 2px solid #eee;
    box-shadow: 0 0 10px #eeeeee50;
}
.customButton.light {
    color: var(--secondary);
}
.customButton.light:hover {
    color: var(--primary);
}

/***** Custom Button Secondary *****/
.customButton.secondary {
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 10px #00000050;
}
.customButton.secondary {
    color: #fff;
}
.customButton.secondary:hover {
    background-color: var(--primary);
    border: 2px solid var(--primary);
}